home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / lang / sbasic02 / test.b < prev    next >
Encoding:
Text File  |  1994-11-04  |  213 b   |  10 lines

  1. 10 INPUT "How old are you? ",A
  2. IF A = 16 THEN PRINT "A = ";16 ELSE PRINT "A = NOT";16
  3. FOR I = 1 TO 3
  4. PRINT "You're not the same age as me..."
  5. NEXT
  6. GOTO 30
  7. 20 PRINT "Wow! So am I!"
  8. 30 PRINT "Goodbye!"
  9. END
  10.